home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / qrep10b.zip / QRLIST.PAS < prev    next >
Pascal/Delphi Source File  |  1996-04-10  |  894b  |  42 lines

  1. unit QRLIST;
  2. {
  3.  QuickReport simple list template
  4.  - Connect a database table to the TTable component
  5.  - Put QRDBText components on the Detail band and connect them to the fields
  6.  }
  7. interface
  8.  
  9. uses
  10.   wintypes,winprocs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  11.   Quickrep, StdCtrls, ExtCtrls, DB, DBTables;
  12.  
  13. type
  14.   TQRListTemplate = class(TForm)
  15.     QuickReport: TQuickReport;
  16.     Title: TQRBand;
  17.     PageHeader: TQRBand;
  18.     Detail: TQRBand;
  19.     PageNumber: TQRSysData;
  20.     PageFooter: TQRBand;
  21.     QRDateTime: TQRSysData;
  22.     QRSysData1: TQRSysData;
  23.     QRLabel1: TQRLabel;
  24.     QRLabel2: TQRLabel;
  25.     QRLabel3: TQRLabel;
  26.     Table1: TTable;
  27.     DataSource1: TDataSource;
  28.   private
  29.     { Private declarations }
  30.   public
  31.     { Public declarations }
  32.   end;
  33.  
  34. var
  35.   QRListTemplate: TQRListTemplate;
  36.  
  37. implementation
  38.  
  39. {$R *.DFM}
  40.  
  41. end.
  42.